home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / fsBoot.h < prev    next >
C/C++ Source or Header  |  1991-08-30  |  1KB  |  49 lines

  1. /*
  2.  * fsBoot.h --
  3.  *
  4.  *      Boot program include fileto get needed FS header files.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/boot/decprom/RCS/fsBoot.h,v 1.1 90/02/16 16:14:23 shirriff Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _FSBOOT
  20. #define _FSBOOT
  21.  
  22. #include "fs.h"
  23. #include <kernel/fslcl.h>
  24. #include <kernel/fsdm.h>
  25. #include "fsIndex.h"
  26. #include <kernel/fsio.h>
  27. #include <kernel/fsioFile.h>
  28. #include <kernel/fsioDevice.h>
  29. #include <kernel/ofs.h>
  30. #include "boot.h"
  31.  
  32. /*
  33.  * The real Fsdm_Domain contains lots of knarly kernel data structures,
  34.  * so it isn't defined outside the kernel.  All we use is the (now
  35.  * non-existent) header pointer, so define our own verion of Fsdm_Domain.
  36.  */
  37.  
  38. typedef struct {
  39.     Ofs_DomainHeader    *headerPtr;
  40. } Fsdm_Domain;
  41.  
  42. extern Fs_Device         fsDevice;
  43. extern    Fsdm_Domain        *fsDomainPtr;
  44. extern Fsio_FileIOHandle    *fsRootHandlePtr;
  45.  
  46. #define mnew(type)    (type *)malloc(sizeof(type))
  47.  
  48. #endif _FSBOOT
  49.